-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
알림 작업 구조 개선 & 특정 알림 메시지 구체화 #747
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ay-eonii
approved these changes
Oct 24, 2024
hoyeonyy
approved these changes
Oct 24, 2024
Mingyum-Kim
approved these changes
Oct 24, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR의 목적이 무엇인가요?
이슈 ID는 무엇인가요?
설명
배경
용어를 먼저 정리해보자면, 전체 알림 작업은 다음 순서로 진행됩니다.
앞으로는 모임 생성 / 참여 등의 작업을 서비스 작업, 알림 대상자 조회~ 부터를 알림 작업, 실제 전송을 알림 전송으로 표현하겠습니다.
기존 구조
기존의 구조는 다음과 같습니다.
이 구조에서 생각할 수 있는 문제는,
알림의 전체 흐름에서 가장 중요하게 이루어져야 하는 작업은 서비스 작업과 회원별 알림을 저장하는 작업이라고 생각하는데요, 그러면 다음과 같은 조건을 만족해야 한다고 생각했습니다.
수정된 구조
따라서 위의 관점으로 전체 구조를 아래 사진과 같이 수정했습니다.
비동기 처리는 Async 어노테이션을 사용해도 되지만, 이 경우 기존 작업이 마무리 되었는지(= 트랜잭션이 커밋되었는지)의 여부와 무관하게 비동 기 실행이 될 수 있기에 TransactionalEventListener를 이용해서 기존 작업이 커밋되었을 때(
TransactionPhase.AFTER_COMMIT
) 나머지 작업이 진행되도록 합니다.바뀐 구조에서는 기존의 문제를 다음과 같이 해결합니다.
물론 지금 정도의 트래픽에서는 쓰기 DB만 사용해도 크게 문제는 없다고 느껴지나, 성능의 관점이 아닌 상황에 맞는 적절한 DB를 사용한다는 점에서의 의의가 있다고 생각합니다
비동기 처리에 대한 테스트 커밋은 별도 링크로 남겨둘게요 ~ (링크1, 링크2)
질문 혹은 공유 사항 (Optional)
알림 작업은 정말 끝이 없네요.. 알림쪽은 아무래도 제가 맡아서 진행한 만큼 전체 맥락 파악이 쉽지는 않을 것이라고 생각합니다.
그래서 최대한 풀어쓴다고 했는데, 그럼에도 이해가 안가는 부분이 있다면 편하게 질문 주세요!